home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / probehist.sql < prev    next >
Text File  |  2000-05-12  |  1KB  |  24 lines

  1. /* RCSVER $Id: probehist.sql,v 1.2 1999-04-05 19:07:19-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        probehist.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the probehist.sql. Probehist will contain information
  9. *        about probing from the GRS. Probe information from the actual 
  10. *        probed data will be stored in the fbprobe table.
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE probehist
  14. (
  15.     farebox_glid    NUMBER(38),    /* ID of farebox */
  16.     pdate        DATE,        /* Date of probe */
  17.     cbintent    NUMBER(38),    /* Intent to pull: 1:pull 0:not */
  18.     probe_seq    NUMBER(38),    /* Probe sequence number */
  19.     location_glid    NUMBER(38),    /* Location of probing */
  20.     user_id        VARCHAR2(80),    /* User respons. for probing */
  21.     conversion_num    NUMBER(38),    /* Conversion num from convert table */
  22.     CONSTRAINT pk_probehist PRIMARY KEY (conversion_num)
  23. );
  24.